home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Utilities / Communications / InterSLIP Remote 1.2.2 / Developers / ISAppleEventsIntf.p < prev    next >
Text File  |  1996-03-12  |  909b  |  45 lines

  1. {
  2. /******************************************************************************\
  3.  
  4.     ISAppleEventsIntf.p
  5.     
  6.     Constants for Apple Events for InterSLIP Remote 1.2.1
  7.     
  8. \******************************************************************************/
  9. }
  10.  
  11. UNIT ISAppleEventsIntf;
  12. INTERFACE
  13.  
  14.     CONST
  15.  
  16. { Event Class }
  17.         kISRemoteEventSuite        =    'MWIr';
  18.  
  19. { Event ID's }
  20.         kEventConnect            =    'Cnct';
  21.         kEventDisconnect        =    'Dscn';
  22.         kEventClearLog            =    'ClLg';
  23.  
  24. { Classes }
  25.         kClassOptions            =    'optn';
  26.  
  27. { Properties }
  28.         kOptConnected            =    'Cntd';
  29.         kOptLogging                =    'Lgng';
  30.         kOptRedial                =    'ReDl';
  31.         kOptRedialDelay            =    'RDly';
  32.         kOptCCLDelay            =    'CCLD';
  33.         kOptConnectionSound        =    'CSnd';
  34.  
  35. { Enumerations }
  36.         kEnumConnectionStatus    =    'Stat';
  37.         kStatIdle                =    'Idle';
  38.         kStatWaiting            =    'Wtng';
  39.         kStatDialing            =    'Dlng';
  40.         kStatLoggingIn            =    'Gtwy';
  41.         kStatConnected            =    'Cntd';
  42.         kStatHangingUp            =    'Hnng';
  43.  
  44. IMPLEMENTATION
  45. END.